home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update19.zoo / gcc2.1 / GMakefile.hp < prev    next >
Encoding:
Text File  |  1992-03-28  |  14.8 KB  |  401 lines

  1. # Makefile for GNU C++ CROSS compiler for the atariST/TT series hosted
  2. #  on a HPUX host (tested only on a HP Snake running hpux 8.x)
  3. #  NOTE: requires alloca.c from the emacs dist.
  4. #
  5.  
  6. # Makefile for GNU C compiler.
  7. #   Copyright (C) 1987 Free Software Foundation, Inc.
  8.  
  9. #This file is part of GNU CC.
  10.  
  11. #GNU CC is distributed in the hope that it will be useful,
  12. #but WITHOUT ANY WARRANTY.  No author or distributor
  13. #accepts responsibility to anyone for the consequences of using it
  14. #or for whether it serves any particular purpose or works at all,
  15. #unless he says so in writing.  Refer to the GNU CC General Public
  16. #License for full details.
  17.  
  18. #Everyone is granted permission to copy, modify and redistribute
  19. #GNU CC, but only under the conditions described in the
  20. #GNU CC General Public License.   A copy of this license is
  21. #supposed to have been given to you along with GNU CC so you
  22. #can know your rights and responsibilities.  It should be in a
  23. #file named COPYING.  Among other things, the copyright notice
  24. #and this notice must be preserved on all copies.
  25.  
  26. .NOEXPORT: # This tells GNU Make version 3
  27.        # not to put all the variables in the environment.
  28.  
  29. CROSSDIR = /net/acae127/home/bammi/atari.hp-ux/cross-gcc
  30. CROSSBIN = $(CROSSDIR)/bin
  31. CROSSLIB = $(CROSSDIR)/lib
  32. CROSSINC = $(CROSSDIR)/include
  33.  
  34. GCC_INCLUDE_DIR = $(CROSSINC)
  35. GPLUSPLUS_INCLUDE_DIR = $(CROSSDIR)/g++-inc
  36.  
  37. #CFLAGS =  -O +Obb1000 -DUSE_C_ALLOCA -DCROSSATARI=1 -DCROSSHPUX -I./config -I.
  38. CFLAGS =  -g -DUSE_C_ALLOCA -DCROSSATARI=1 -DCROSSHPUX -I./config -I.
  39. ALLOCA = /net/acae127/home/bammi/lib.hp-ux/alloca.o
  40. #MALLOC1 = /net/acae127/home/bammi/lib.hp-ux/malloc_new6.o
  41. MALLOC1 = 
  42. # host's cc
  43. CC = /bin/cc
  44.  
  45. # OLDCC should not be the GNU C compiler.
  46. BISON = bison
  47. BISONFLAGS =
  48. AR = ar
  49. SHELL = /bin/sh
  50.  
  51. bindir = $(CROSSBIN)
  52. libdir = $(CROSSLIB)
  53.  
  54. # Change this to a null string if obstacks are installed in the
  55. # system library.
  56. OBSTACK=obstack.o
  57.  
  58. # Dependency on obstack, alloca, malloc or whatever library facilities
  59. # are not installed in the system libraries.
  60. LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
  61.  
  62. # How to link with both our special library facilities
  63. # and the system's installed libraries.
  64. LIBS = $(OBSTACK) $(ALLOCA) $(MALLOC) $(MALLOC1) $(CLIB)
  65.  
  66. # Language-specific object files for C++.
  67. CPLUS_OBJS = cp-parse.o cp-decl.o cp-decl2.o \
  68.    cp-typeck.o cp-type2.o cp-tree.o cp-ptree.o \
  69.    cp-cvt.o cp-search.o cp-lex.o cp-gc.o cp-call.o \
  70.    cp-class.o cp-init.o cp-method.o cp-except.o \
  71.    cp-expr.o cp-pt.o cp-edsel.o cp-xref.o \
  72.    $(CPLUS_INPUT) cp-spew.o c-common.o
  73.  
  74. # Language-independent object files.
  75. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  76.  function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
  77.  rtl.o print-rtl.o rtlanal.o dbxout.o sdbout.o dwarfout.o emit-rtl.o \
  78.  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
  79.  regclass.o local-alloc.o global-alloc.o reload.o reload1.o caller-save.o \
  80.  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
  81.  insn-recog.o insn-extract.o insn-output.o insn-emit.o \
  82.  insn-attrtab.o aux-output.o getpwd.o
  83.  
  84. GCC_PASSES=gcc cc1 cpp
  85.  
  86. # Files to be copied away after each stage in building.
  87. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  88.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  89.  insn-attr.h insn-attrtab.c \
  90.  stamp-flags stamp-config stamp-codes \
  91.  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
  92.  stamp-attr stamp-attrtab \
  93.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  94.  genattrtab genattr \
  95.  $(GCC_PASSES) $(EXTRA_PARTS) gcc-cross cccp cc1plus cc1obj enquire \
  96.  protoize unprotoize specs collect2
  97.  
  98. # Header files that are made available to programs compiled with gcc.
  99. USER_H = stddef.h stdarg.h assert.h va-*.h limits.h
  100.  
  101. # If you want to recompile everything, just do rm *.o.
  102. # CONFIG_H = config.h tm.h
  103. CONFIG_H =
  104. RTL_H = rtl.h rtl.def machmode.h machmode.def
  105. TREE_H = tree.h real.h tree.def machmode.h machmode.def
  106. CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
  107.  
  108. ALL = cc1plus
  109.  
  110. all: $(ALL)
  111.  
  112. cc1plus: $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
  113.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
  114.  
  115. # C++ language specific files.
  116.  
  117. cp-parse.o : cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  118.     $(CC) -c $(CFLAGS) cp-parse.c
  119.  
  120. cp-parse.c cp-parse.h : cp-parse.y
  121.     @echo expect 30 shift/reduce conflicts and 14 reduce/reduce conflicts
  122.     $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
  123.  
  124. cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
  125.    cp-parse.h flags.h
  126. cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
  127.    cp-parse.h cp-input.c flags.h
  128. cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  129.   cp-lex.h cp-decl.h stack.h
  130. cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  131.   cp-lex.h cp-decl.h
  132. cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  133. cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  134. cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h \
  135.     cp-class.h flags.h
  136. cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h cp-class.h \
  137.     flags.h
  138. cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  139. cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  140. cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
  141. cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  142. cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  143. cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
  144. cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  145. cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  146. cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
  147.   expr.h insn-codes.h
  148. cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  149. cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H)
  150. cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
  151.  
  152. # A file used by all variants of C.
  153.  
  154. c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
  155.  
  156.  
  157. # Language-independent files.
  158. dumpvers: dumpvers.c
  159.  
  160. version.o: version.c
  161. obstack.o: obstack.c
  162.  
  163. tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
  164. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  165. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
  166. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
  167. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
  168.  insn-attr.h xcoffout.h
  169.  
  170. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  171.  
  172. print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
  173. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  174.  
  175. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h \
  176.    insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
  177. function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  178.    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
  179.    recog.h output.h
  180. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  181.    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
  182. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) gvarargs.h flags.h function.h  \
  183.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
  184. calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
  185.    insn-flags.h
  186. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  187.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
  188. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
  189.    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
  190. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  191.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h
  192. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
  193.    insn-config.h reload.h gstab.h xcoffout.h
  194. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
  195.    insn-config.h reload.h
  196. dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
  197.    insn-config.h reload.h output.h
  198. xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
  199. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h  \
  200.    regs.h insn-config.h insn-codes.h real.h expr.h
  201.  
  202. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
  203.    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
  204.  
  205. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
  206.    insn-config.h insn-flags.h insn-codes.h expr.h real.h
  207. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
  208.  
  209. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
  210.    insn-config.h recog.h
  211. loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
  212.    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
  213. unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  214.    integrate.h regs.h flags.h expr.h loop.h
  215. flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
  216.    basic-block.h regs.h hard-reg-set.h output.h
  217. combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h  \
  218.    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
  219.    basic-block.h recog.h real.h
  220. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  221.    basic-block.h regs.h insn-config.h recog.h 
  222. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
  223.    regs.h hard-reg-set.h insn-config.h recog.h output.h
  224. global-alloc.o : global-alloc.c $(CONFIG_H) $(RTL_H) flags.h  \
  225.    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
  226.  
  227. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  228.    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
  229. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
  230.    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
  231.    basic-block.h recog.h output.h
  232. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  233.    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
  234. reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
  235.    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
  236.    flags.h output.h
  237. sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
  238.    flags.h insn-config.h insn-attr.h
  239. final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
  240.    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
  241.    hard-reg-set.h insn-codes.h gstab.h xcoffout.h
  242. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  243.    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
  244.    insn-flags.h insn-codes.h real.h
  245. reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
  246.    regs.h hard-reg-set.h flags.h insn-config.h
  247.    
  248. aux-output.o : aux-output.c $(CONFIG_H) \
  249.    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
  250.    insn-flags.h output.h insn-attr.h insn-codes.h
  251.  
  252. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  253.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
  254.   insn-attr.h insn-attrtab.c
  255.  
  256. insn-config.h : md genconfig
  257.     ./genconfig md > tmp-insn-config.h
  258.     ./move-if-change tmp-insn-config.h insn-config.h
  259.  
  260. insn-flags.h : md genflags
  261.     ./genflags md > tmp-insn-flags.h
  262.     ./move-if-change tmp-insn-flags.h insn-flags.h
  263.  
  264. insn-codes.h : md gencodes
  265.     ./gencodes md > tmp-insn-codes.h
  266.     ./move-if-change tmp-insn-codes.h insn-codes.h
  267.  
  268. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h insn-config.h
  269.     $(CC) $(CFLAGS) -c insn-emit.c
  270.  
  271. insn-emit.c : md genemit
  272.     ./genemit md > tmp-insn-emit.c
  273.     ./move-if-change tmp-insn-emit.c insn-emit.c
  274.  
  275. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h
  276.     $(CC) $(CFLAGS) -c insn-recog.c
  277.  
  278. insn-recog.c : md genrecog
  279.     ./genrecog md > tmp-insn-recog.c
  280.     ./move-if-change tmp-insn-recog.c insn-recog.c
  281.  
  282. insn-extract.o : insn-extract.c $(RTL_H)
  283.     $(CC) $(CFLAGS) -c insn-extract.c
  284.  
  285. insn-extract.c : md genextract
  286.     ./genextract md > tmp-insn-extract.c
  287.     ./move-if-change tmp-insn-extract.c insn-extract.c
  288.  
  289. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h
  290.     $(CC) $(CFLAGS) -c insn-peep.c
  291.  
  292. insn-peep.c : md genpeep
  293.     ./genpeep md > tmp-insn-peep.c
  294.     ./move-if-change tmp-insn-peep.c insn-peep.c
  295.  
  296. insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h insn-config.h insn-flags.h conditions.h output.h aux-output.c
  297.     $(CC) $(CFLAGS) -c insn-output.c
  298.  
  299. insn-output.c : md genoutput
  300.     ./genoutput md > tmp-insn-output.c
  301.     ./move-if-change tmp-insn-output.c insn-output.c
  302.  
  303. insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
  304.      insn-attr.h insn-config.h
  305.     $(CC) $(CFLAGS) -c insn-attrtab.c
  306.  
  307. insn-attr.h: md genattr
  308.     ./genattr md > tmp-attr.h
  309.     ./move-if-change tmp-attr.h insn-attr.h
  310.  
  311. insn-attrtab.c: md genattrtab
  312.     ./genattrtab md > tmp-attrtab.c
  313.     ./move-if-change tmp-attrtab.c insn-attrtab.c
  314.  
  315. # Now the programs that generate those files.
  316.  
  317. genconfig : genconfig.o rtl.o $(LIBDEPS)
  318.     $(CC) $(CFLAGS) $(LDFLAGS) -o genconfig genconfig.o rtl.o $(LIBS)
  319.  
  320. genconfig.o : genconfig.c $(RTL_H)
  321.     $(CC) $(CFLAGS) -c genconfig.c
  322.  
  323. genflags : genflags.o rtl.o $(LIBDEPS)
  324.     $(CC) $(CFLAGS) $(LDFLAGS) -o genflags genflags.o rtl.o $(LIBS)
  325.  
  326. genflags.o : genflags.c $(RTL_H)
  327.     $(CC) $(CFLAGS) -c genflags.c
  328.  
  329. gencodes : gencodes.o rtl.o $(LIBDEPS)
  330.     $(CC) $(CFLAGS) $(LDFLAGS) -o gencodes gencodes.o rtl.o $(LIBS)
  331.  
  332. gencodes.o : gencodes.c $(RTL_H)
  333.     $(CC) $(CFLAGS) -c gencodes.c
  334.  
  335. genemit : genemit.o rtl.o $(LIBDEPS)
  336.     $(CC) $(CFLAGS) $(LDFLAGS) -o genemit genemit.o rtl.o $(LIBS)
  337.  
  338. genemit.o : genemit.c $(RTL_H)
  339.     $(CC) $(CFLAGS) -c genemit.c
  340.  
  341. genrecog : genrecog.o rtl.o $(LIBDEPS)
  342.     $(CC) $(CFLAGS) $(LDFLAGS) -o genrecog genrecog.o rtl.o $(LIBS)
  343.  
  344. genrecog.o : genrecog.c $(RTL_H)
  345.     $(CC) $(CFLAGS) -c genrecog.c
  346.  
  347. genextract : genextract.o rtl.o $(LIBDEPS)
  348.     $(CC) $(CFLAGS) $(LDFLAGS) -o genextract genextract.o rtl.o $(LIBS)
  349.  
  350. genextract.o : genextract.c $(RTL_H)
  351.     $(CC) $(CFLAGS) -c genextract.c
  352.  
  353. genpeep : genpeep.o rtl.o $(LIBDEPS)
  354.     $(CC) $(CFLAGS) $(LDFLAGS) -o genpeep genpeep.o rtl.o $(LIBS)
  355.  
  356. genpeep.o : genpeep.c $(RTL_H)
  357.     $(CC) $(CFLAGS) -c genpeep.c
  358.  
  359. genoutput : genoutput.o rtl.o $(LIBDEPS)
  360.     $(CC) $(CFLAGS) $(LDFLAGS) -o genoutput genoutput.o rtl.o $(LIBS)
  361.  
  362. genoutput.o : genoutput.c $(RTL_H)
  363.     $(CC) $(CFLAGS) -c genoutput.c
  364.  
  365. genattr : genattr.o rtl.o $(LIBDEPS)
  366.     $(CC) $(CFLAGS) $(LDFLAGS) -o genattr \
  367.      genattr.o rtl.o $(LIBS)
  368.  
  369. genattr.o : genattr.c $(RTL_H) config.h
  370.     $(CC) -c $(CFLAGS) genattr.c
  371.  
  372. genattrtab : genattrtab.o rtl.o rtlanal.o $(LIBDEPS)
  373.     $(CC) $(CFLAGS) $(LDFLAGS) -o genattrtab \
  374.      genattrtab.o rtl.o rtlanal.o $(LIBS)
  375.  
  376. genattrtab.o : genattrtab.c $(RTL_H) config.h insn-config.h
  377.     $(CC) -c $(CFLAGS) genattrtab.c
  378.  
  379. # gnulib is not deleted because deleting it would be inconvenient
  380. # for most uses of this target.
  381. clean:
  382.     -rm -f *.o *.oo $(STAGESTUFF)
  383.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
  384.     -rm -f core
  385.  
  386. # Get rid of every file that's generated from some other file (except INSTALL).
  387. realclean: clean
  388.     -rm -f $(ALL)
  389.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  390.     -rm -f errs gnulib TAGS 
  391.     -rm -f core report
  392.     -rm -f internals internals-* internals.?? internals.??s
  393.  
  394. # Copy the files into directories where they will be run.
  395. install: all
  396.     cp cc1plus $(libdir)/gcc-cc1plus
  397.  
  398. force:
  399. #In GNU Make, ignore whether `stage*' exists.
  400. .PHONY: clean realclean
  401.